projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb8de84
)
GtkStyleContext: Fix merging of local and global providers.
author
Carlos Garnacho
<carlosg@gnome.org>
Wed, 3 Nov 2010 10:40:12 +0000
(11:40 +0100)
committer
Carlos Garnacho
<carlosg@gnome.org>
Sat, 4 Dec 2010 14:38:35 +0000
(15:38 +0100)
gtk/gtkstylecontext.c
patch
|
blob
|
history
diff --git
a/gtk/gtkstylecontext.c
b/gtk/gtkstylecontext.c
index 8985877f52a8864a8ede8c9583166810daf6f7ef..fe4084e79ace10e88b21d8398f3666e7ada4f875 100644
(file)
--- a/
gtk/gtkstylecontext.c
+++ b/
gtk/gtkstylecontext.c
@@
-741,7
+741,7
@@
find_next_candidate (GList *local,
local_data = local->data;
global_data = global->data;
- if (local_data->priority
>=
global_data->priority)
+ if (local_data->priority
<
global_data->priority)
return local;
else
return global;